home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / util / arc / GNUtar15.lha / GNUtar / source.LHA / source / sasinclude / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-16  |  235 b   |  12 lines

  1. #ifndef _TIMEB_
  2. #define _TIMEB_
  3.  
  4. struct timeb {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;    /* Field not used        */
  7.     short        timezone;
  8.     short        dstflag;    /* Field not used        */
  9. };
  10.  
  11. #endif /* _TIMEB_ */
  12.